RegionLog
A log of an event that happened in a region, such as a player spawning into or warping out of the region.
Desc
A description of the event that happened in the region.
It is of the type string.
It is read-only, it cannot be assigned to.
Event
The type of event that happened in the region.
It is of the type RegionLogType.
It is read-only, it cannot be assigned to.
TimeAgo
The time since the event happened, in seconds. Does not update in real time.
It is of the type number.
It is read-only, it cannot be assigned to.
Luau Type
This is the luau type for RegionLog. It may help clear up mistranslations from the raw data to the wiki page (as it is an automatic process).
export type RegionLog = {
read TimeAgo: number,
read Event: RegionLogType,
read Desc: string,
}